home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / DCLAP 4j / DBio / DSeqChildApp.h < prev    next >
Encoding:
Text File  |  1995-12-17  |  435 b   |  35 lines  |  [TEXT/R*ch]

  1. // DSeqChildApp.h
  2. // d.g.gilbert
  3.  
  4. #ifndef _DSEQCHILDAPP_
  5. #define _DSEQCHILDAPP_
  6.  
  7. #include <DObject.h>
  8.  
  9. class DList;
  10. class DMenu;
  11. class DSeqList;
  12.  
  13.  
  14.  
  15. class DSeqApps : public DObject
  16. {    
  17. public:
  18.     enum { 
  19.         kSeqApps = 360, 
  20.         kChildMenu, kChildMenuBaseID
  21.         };
  22.     
  23.     //static DList* fgChildList;
  24.     static void SetUpMenu( short menuId, DMenu*& aMenu); 
  25.     static void CallChildApp( short menucmd, DSeqList* aSeqList);
  26.  
  27.     DSeqApps();
  28.     
  29. };
  30.  
  31.  
  32.  
  33. #endif
  34.  
  35.